home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / unix / gwy160.exe / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-09-30  |  3KB  |  101 lines

  1. @echo off
  2. if %1$ == $ echo **************************************************************
  3. if %1$ == $ echo . Usage : install NetWare_drive
  4. if %1$ == $ echo .
  5. if %1$ == $ echo . Example : install f:
  6. if %1$ == $ echo .   
  7. if %1$ == $ echo .   NetWare_drive   = Network drive mapped to SYS: on server
  8. if %1$ == $ echo **************************************************************
  9. if %1$ == $ goto exit
  10.  
  11.  
  12. @echo off
  13. echo .*************************************************************************
  14. echo .                          I M P O R T A N T                             
  15. echo .
  16. echo .This patch updates the NFS Gateway v1.1 product for NetWare 3.1x ONLY!!!
  17. echo .
  18. echo .      You need approximately 3 MB of disk space to apply this patch.
  19. echo .
  20. echo .*************************************************************************
  21. echo .
  22. echo .
  23. yesno "    Do you want to continue with the patch? [y/n] "
  24. if errorlevel 1 goto exit
  25.  
  26. echo .
  27. echo . Copying files to local directory 
  28. echo .
  29. copy %1\system\nfsgw.nlm 
  30. copy %1\system\nisdmag.nlm 
  31.  
  32. echo .
  33. echo . Updating Files
  34. echo .
  35.  
  36. patch /nos /nop ptf-f160 
  37.  
  38. echo .
  39. echo . If you continue, patched files will be copied back to the server.
  40. echo .
  41. echo .
  42. yesno "    Do you want to continue with the patch? [y/n] "
  43. if errorlevel 1 goto exit
  44.  
  45.  
  46. echo .
  47. echo . Copying files back to server : phase 1
  48. echo .
  49. flag %1\system\nfsgw.nlm rw > nul
  50. flag %1\system\nisdmag.nlm rw > nul
  51.  
  52.  
  53. echo .
  54. echo . Copying files back to server : phase 2
  55. echo .
  56. copy nfsgw.nlm %1\system\nfsgw.nlm > nul
  57. copy nisdmag.nlm %1\system\nisdmag.nlm > nul
  58.  
  59. echo .
  60. echo . Copying files back to server : phase 3
  61. echo .
  62. flag %1\system\nfsgw.nlm ros > nul
  63. flag %1\system\nisdmag.nlm ros > nul
  64.  
  65.  
  66. echo .
  67. echo .
  68. echo . If you are running the NFS Gateway software on a NetWare 3.11
  69. echo . server, you do NOT need to install the NetWare 3.12
  70. echo . NFSSHIM.NLM module.
  71. echo .
  72. echo . If you are running the NFS Gateway software on a NetWare 3.12
  73. echo . server, you DO need to install the NetWare 3.12
  74. echo . NFSSHIM.NLM module.
  75. echo .
  76. yesno "    Do you want to install NFSSHIM.NLM for NetWare 3.12? [y/n] "
  77. if errorlevel 1 goto part4
  78. ncopy %1\system\nfsshim.nlm  %1\system\nfsshim.sav > nul
  79. flag %1\system\nfsshim.nlm rw > nul
  80. copy nfsshim.nlm %1\system\nfsshim.nlm > nul
  81. flag %1\system\nfsshim.nlm ros > nul
  82.  
  83. :part4
  84.  
  85. echo . ***********************************************************************
  86. echo . The patch is now complete.  To run the patched software, you now must 
  87. echo . restart the NFS Gateway services.   
  88. echo . 
  89. echo . Enter these commands at the server console:   NFSSTOP 
  90. echo .                                               DOWN
  91. echo .                                               EXIT
  92. echo .
  93. echo .                                               SERVER
  94. echo . 
  95. echo . ***********************************************************************
  96.  
  97.  
  98. :exit
  99. exit
  100.  
  101.